home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
perl5
/
Debconf
/
Gettext.pm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl POD Document
|
2009-03-24
|
301 b
|
28 lines
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::Gettext;
use strict;
BEGIN {
eval 'use Locale::gettext';
if ($@) {
eval q{
sub gettext {
return shift;
}
};
}
else {
textdomain('debconf');
}
}
use base qw(Exporter);
our @EXPORT=qw(gettext);
1